/* Site Kernodet */
/* index - Iframe CSS */
/* 02/04/2023 */

* {
  box-sizing: border-box;
}


@font-face {
	font-family: 'Barlow';
	src: url("/fonts/Barlow/Barlow-Black.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-Black.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-BlackItalic.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-Bold.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-BoldItalic.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-ExtraBold.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-ExtraBoldItalic.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-ExtraLight.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-ExtraLightItalic.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-Italic.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-Light.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-LightItalic.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-Medium.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-MediumItalic.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-SemiBold.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-SemiBoldItalic.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-Thin.ttf") format("truetype"),
		url("/fonts/Barlow/Barlow-ThinItalic.ttf") format("truetype");
}

body {
  background-color:  #dd814e;
  color:  #14442e;
  font-size: 100%;
  font-family:"Barlow", times, serif;
  overflow: hidden
}

h1 {
  font-size: 400%;
  word-break: break-all;
  text-align: left;
}

h2 {
  font-size: 200%;
  word-break: break-all;
}

h3 {
  font-size: 100%;
  word-break: break-all;
}

/* Tete website */
.tete {
  max-width: 90%;
  text-align: left;
  margin: auto;
  line-height: 50%;
}

/* Center website */
.main3 {
  max-width: 938px;
  text-align: center;
  margin: auto;
  font-family:"Barlow";
}

.main4 {
  max-width: 1230px;
  text-align: center;
  margin: auto;
}

.main5 {
  max-width: 1530px;
  text-align: center;
  margin: auto;
}

/* Container */
.container {
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
    margin: auto;
    display: table-cell;
    vertical-align: middle
}

.container .text {
    opacity: 1.0;
    z-index: 1;
    position: absolute;
    text-align: center;
    font-family: "Barlow";
    font-size: 90%;
    font-weight: 100;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 85%;
    color: white;
    width: 90%;
}

.container .text1 {
    opacity: 1.0;
    z-index: 1;
    position: absolute;
    text-align: center;
    font-family: "Barlow";
    font-size: 90%;
    font-weight: 100;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 85%;
    color: #14442e;
    width: 90%;
}

#left {    
 text-align: left;  
 }  

#center {    
 text-align: center;  
 }  

#right{    
  text-align: right;  
 }

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Image */
img {
  background-size: cover;
  max-width: 300px;
  max-height: 300px;
}

/* Grid */
.wrapper3 {
  display: grid;
  grid-template-columns:  repeat(3, 1fr);
  row-gap: 5px;
  column-gap: 5px;
  justify-items: center;
  align-items: center;
}

.wrapper4 {
  display: grid;
  grid-template-columns:  repeat(4, 1fr);
  row-gap: 5px;
  column-gap: 5px;
  justify-items: center;
  align-items: center;
}

.wrapper5 {
  background-color:  #dd814e;
  color:  #14442e;
  font-size: 100%;
  font-family:"Barlow", times, serif;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 5px;
  justify-items: center;
  align-items: center;
}


/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px) {
.wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
}
.wrapper3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
}
.wrapper5 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
}
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
  align-items: center;
}
.wrapper3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
  align-items: center;
}
.wrapper5 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
  align-items: center;
}
h1 {
  font-size: 300%;
  word-break: break-all;
  text-align: left;
}

}